From aa0833890b1f17b1d7fba267c7eaf3327b6b2675 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Sun, 27 Jan 2008 17:03:35 +0000 Subject: [PATCH] libxc: Push parallel build of libraries down to a new phony target, as 'build' is already loaded with library dependencies on ia64. Signed-off-by: Keir Fraser --- tools/libxc/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile index eca40fcbab..ffc5662052 100644 --- a/tools/libxc/Makefile +++ b/tools/libxc/Makefile @@ -80,8 +80,11 @@ LIB += libxenguest.so libxenguest.so.$(MAJOR) libxenguest.so.$(MAJOR).$(MINOR) all: build .PHONY: build -build: $(LIB) - $(MAKE) $(LIB) +build: + $(MAKE) libs + +.PHONY: libs +libs: $(LIB) .PHONY: install install: build -- 2.30.2